DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomDataSetCollection Class / Add Method / Add(IEnumerable<DicomDataSet>) Method

Collection of DicomDataSets to be added







In This Topic
    Add(IEnumerable<DicomDataSet>) Method
    In This Topic
    Syntax
    'Declaration
     
    
    Public Overloads Sub Add( _
       ByVal value As System.Collections.Generic.IEnumerable(Of DicomDataSet) _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSetCollection
    Dim value As System.Collections.Generic.IEnumerable(Of DicomDataSet)
     
    instance.Add(value)
    public void Add( 
       System.Collections.Generic.IEnumerable<DicomDataSet> value
    )
    public procedure Add( 
        value: System.Collections.Generic.IEnumerable
    ); 
    public function Add( 
       value : System.Collections.Generic.IEnumerable
    );
    public: void Add( 
       System.Collections.Generic.IEnumerable<DicomDataSet*>* value
    ) 
    public:
    void Add( 
       System.Collections.Generic.IEnumerable<DicomDataSet^>^ value
    ) 

    Parameters

    value

    Collection of DicomDataSets to be added

    Remarks
    Adds a Collection of DicomDataSets to the end of a DicomDataSetCollection.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also